From 9e2834abc323e9b46803b764b0d04393d437a7cc Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Wed, 13 Dec 2023 12:55:31 -0500 Subject: Add share button --- src/app/groups/[groupId]/layout.tsx | 2 +- src/app/groups/[groupId]/share-button.tsx | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'src/app/groups/[groupId]') diff --git a/src/app/groups/[groupId]/layout.tsx b/src/app/groups/[groupId]/layout.tsx index ca50762..07cf17f 100644 --- a/src/app/groups/[groupId]/layout.tsx +++ b/src/app/groups/[groupId]/layout.tsx @@ -42,7 +42,7 @@ export default async function GroupLayout({
- +
diff --git a/src/app/groups/[groupId]/share-button.tsx b/src/app/groups/[groupId]/share-button.tsx index 808f3a0..fe2e5fb 100644 --- a/src/app/groups/[groupId]/share-button.tsx +++ b/src/app/groups/[groupId]/share-button.tsx @@ -1,4 +1,5 @@ import { CopyButton } from '@/components/copy-button' +import { ShareUrlButton } from '@/components/share-url-button' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { @@ -7,14 +8,15 @@ import { PopoverTrigger, } from '@/components/ui/popover' import { env } from '@/lib/env' +import { Group } from '@prisma/client' import { Share } from 'lucide-react' type Props = { - groupId: string + group: Group } -export function ShareButton({ groupId }: Props) { - const url = `${env.NEXT_PUBLIC_BASE_URL}/groups/${groupId}` +export function ShareButton({ group }: Props) { + const url = `${env.NEXT_PUBLIC_BASE_URL}/groups/${group.id}` return ( @@ -31,6 +33,10 @@ export function ShareButton({ groupId }: Props) {
+

Warning! Every person with the group URL will be able -- cgit v1.3